home *** CD-ROM | disk | FTP | other *** search
/ SGI Developer Toolbox 6.1 / SGI Developer Toolbox 6.1 - Disc 4.iso / public / RTF / Imakefile < prev    next >
Makefile  |  1994-08-01  |  950b  |  56 lines

  1. #include <Project.tmpl>
  2. #include "Xc.tmpl"
  3.  
  4. #define IHaveSubdirs
  5. #define PassCDebugFlags
  6.  
  7. CDEBUGFLAGS = -g
  8. CCOPTIONS = -prototypes -float
  9.  
  10. SUBDIRS = test
  11.  
  12. VERSION = 1.0
  13. INCLUDES = -I$(TOP) -I$(TOP)/X11
  14.  
  15. HEADERS = debug.h elements.h image.h rasterfile.h rtftoken.h \
  16.     space.h textflow.h textrect.h view.h xtextview.h xtextview_c.h
  17.  
  18. SRCS = \
  19.     RichText.c \
  20.     elements.C \
  21.     image.c \
  22.     rtftoken.C \
  23.     textflow.C \
  24.     textrect.C \
  25.     view.C \
  26.     xtextview.C
  27.  
  28. HDRS = \
  29.     RichText.h \
  30.     RichTextP.h 
  31.  
  32. OBJS = \
  33.     RichText.o \
  34.     elements.o \
  35.     image.o \
  36.     rtftoken.o \
  37.     textflow.o \
  38.     textrect.o \
  39.     view.o \
  40.     xtextview.o
  41.  
  42.  
  43. NormalLibraryObjectRule()
  44. NormalLibraryTarget(Xc, $(OBJS))
  45. LintLibraryTarget(Xc, $(SRCS))
  46. MakeDirectories(install, $(INCROOT)/Xc)
  47. InstallLibrary(Xc, $(USRLIBDIR))
  48. InstallLintLibrary(Xc, $(LINTLIBDIR))
  49. InstallMultiple($(HDRS), $(INCROOT)/Xc)
  50. MakeSubdirs($(SUBDIRS))
  51. DependTarget()
  52.  
  53. PACKAGE = XcRichText
  54. RELEASE = 1.1
  55. TARFILE = $(PACKAGE)-$(RELEASE).tar
  56.